<div contenteditable="true">ff2兼容问题

来源:百度知道 编辑:UC知道 时间:2024/06/06 07:46:24
<div contenteditable="true" style="width:500px; height:400px; border:2px solid #000; "></div>

求解ff2兼容
谢谢

FF不支持contenteditable属性
可用下面的方法来实现兼容

<iframe id="eidt" src="about:blank" style="width:500px; height:400px; border:2px solid #000;"></iframe>
<script type="text/javascript">
window.onload = function(){
document.getElementById("eidt").contentWindow.document.designMode = "on";
document.getElementById("eidt").contentWindow.document.contentEditable = true;
}
</script>